change size of button C#

57

change size of button C# -

int width, height;
width = this.Size.Width;
height = this.Size.Height;
width /= 3;
height /= 3;
btn_1.Size = new Size(width, height);

Comments

Submit
0 Comments